1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Sugar.Enties
- {
- /// <summary>
- /// 合同Contract表状态
- /// </summary>
- public enum ContractCheckStatus
- {
- //状态:0=已审;1=申请;2=已结;3=作废;4=变更;6=历史;7=审核流程中
- 已审 = 0,
- 申请 = 1,
- 已结 = 2,
- 作废 = 3,
- 变更 = 4,
- 历史 = 6,
- 审核流程中 = 7
- }
- }
|