You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.5 KiB
C#

namespace Ds.Modules.DsEntity.Auth
{
/// <summary>
/// 业务必填项表
/// </summary>
public class Ds_Sys_Business : BaseEntityTenant
{
/// <summary>
/// 业务类型
/// 1 报关 2 海运出口 3 海运进口 4 空运出口 5 空运进口 6 陆运出口
/// 7 陆运进口 8 仓储 9 保险 10 信用证 11 代理报检
/// 字典表关联查询
/// </summary>
public long BusinessType { get; set; }
/// <summary>
/// 业务名称
/// </summary>
public string BusinessName { get; set; }
/// <summary>
/// 是否必填项
/// </summary>
public bool IsRequired { get; set; } = false;
/// <summary>
/// 是否只读
/// </summary>
public bool IsReadOnly { get; set; } = false;
/// <summary>
/// 是否标记颜色
/// </summary>
public bool IsColor { get; set; } = false;
/// <summary>
/// 颜色色值
/// </summary>
public string Color { get; set; }
}
/// <summary>
/// 业务状态表
/// </summary>
public class Ds_Sys_Business_Statu
{
/// <summary>
/// 业务类型
/// </summary>
public long Dictionary_Id { get; set; }
/// <summary>
/// 业务状态类型 1 业务状态 2 费用状态
/// </summary>
public int BusinessType { get; set; }
public string BusinessDescription { get; set; }
}
}