11 lines
331 B
C#
11 lines
331 B
C#
namespace YLErp.DBModels.Consts
|
|
{
|
|
public static class ContractStatusEnum
|
|
{
|
|
public const string Draft = "草稿";
|
|
public const string OurPartyStamped = "我方用印";
|
|
public const string CounterPartyStamped = "对方用印";
|
|
public const string BothPartyStamped = "双方用印";
|
|
}
|
|
}
|