using iWare.Wms.Core; namespace iWare.Wms.Application { /// /// 字典值参数 /// public class DictDataOutput { /// /// 字典Id /// public virtual long Id { get; set; } /// /// 字典类型Id /// public long TypeId { get; set; } /// /// 值 /// public string Value { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 状态(字典 0正常 1停用 2删除) /// public CommonStatus Status { get; set; } } }