using Business.Model;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Bussiness.Model.Sale
{
///
///进度字典
///
[Description("进度字典表")]
public class wms_prdprogress: BaseEntity
{
/////
///// 进度字典id
/////
//[Key]
//[Description("进度字典主键id")]
//public long progress_id { get; set; }
///
/// 进度类型
///
[StringLength(255)]
[Description("进度类型")]
public string? prdprog_type { get; set; }
///
/// 进度名称
///
[StringLength(255)]
[Description("进度名称")]
public string? prdprog_name { get; set; }
///
/// 进度顺序
///
[Required]
[Description("进度顺序")]
public int? prdprog_seq { get; set; }
///
/// 进度状态1启用0停用
///
[Description("进度状态1启用0停用")]
[DefaultValue(true)]
public bool state { get; set; }
}
}