| | |
| | | public PurchaseTypeEnum PurchaseType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 采购类型(枚举值) |
| | | /// </summary> |
| | | public string PurchaseTypeDesc |
| | | { |
| | | get |
| | | { |
| | | return GetEnumDescriptionUtil.GetEnumDescription(PurchaseType); |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 物料类型(枚举值) |
| | | /// </summary> |
| | | public MaterialTypeEnum MaterialType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料类型(枚举值) |
| | | /// </summary> |
| | | public string MaterialTypeDesc |
| | | { |
| | | get |
| | | { |
| | | return GetEnumDescriptionUtil.GetEnumDescription(MaterialType); |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 主单位(如:kg、m、个) |
| | |
| | | public decimal Length { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否为主支管(true: 主支管, false: 非主支管) |
| | | /// 是否为主支管(1: 主支管, 2: 非主支管) |
| | | /// </summary> |
| | | public bool IsMainBranch { get; set; } |
| | | public YesNoEnum IsMainBranch { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否为主支管 |
| | | /// </summary> |
| | | public string IsMainBranchDesc |
| | | { |
| | | get |
| | | { |
| | | return GetEnumDescriptionUtil.GetEnumDescription(IsMainBranch); |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 生产工厂 |