using System; using System.Collections.Generic; using SqlSugar; using Myshipping.Core.Entity; using System.ComponentModel; /* * @author : whm * @date : 2024-1-22 * @desc : 费用模板 */ namespace Myshipping.Application.Entity { /// /// 费用模板 /// [SugarTable("fee_template", TableDescription = "费用模板")] public class FeeTemplate : DBEntityTenant { /// /// 业务类型 /// [SugarColumn(ColumnName = "OpType")] [Description("业务类型")] public string OpType{ get; set; } /// /// 收付类型(收、付) /// [SugarColumn(ColumnName = "FeeType")] [Description("收付类型(收、付)")] public string FeeType{ get; set; } /// /// 费用模板名称 /// [SugarColumn(ColumnName = "Name")] [Description("费用模板名称")] public string Name{ get; set; } /// /// 费用模板描述 /// [SugarColumn(ColumnName = "Description")] [Description("费用模板描述")] public string Description{ get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "Remark")] [Description("备注")] public string Remark{ get; set; } /// /// 是否公共 /// [SugarColumn(ColumnName = "IsPublic")] [Description("是否公共")] public bool IsPublic{ get; set; } /// /// 开始时间 /// [SugarColumn(ColumnName = "BgnDate")] [Description("开始时间")] public DateTime BgnDate{ get; set; } /// /// 结束时间 /// [SugarColumn(ColumnName = "EndDate")] [Description("结束时间")] public DateTime EndDate{ get; set; } /// /// 租户名称 /// [SugarColumn(ColumnName = "TenantName")] [Description("租户名称")] public string TenantName{ get; set; } } }