在BillStatus中是沒有State 的??? using (FlowDbContext db = CreateContext(trans))
{
BillStatus? state = null;
db.Submit(
billTypeId,
billId,
flowId, ref state
); return state.Value;
} public enum BillStatus
{ /// <summary>
/// 已提交未審核 /// </summary>
Submited = 1, /// <summary>
/// 已經(jīng)審核,但未完成 /// </summary>
Processing = 2, /// <summary>
/// 通過流程的 /// </summary>
Passed = 3, /// <summary>
/// 被否決的 /// </summary>
Rejected = 4
}
添加回答
舉報(bào)
0/150
提交
取消