using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { // /// /// [SugarTable("Dt_FeedbackToMes")] public class Dt_FeedbackToMes : BaseEntity { /// /// 备 注: /// 默认值: /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int Id { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "OrderNo")] public string OrderNo { get; set; } = null!; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "PalletCode")] public string PalletCode { get; set; } = null!; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "ReportStatus")] public int ReportStatus { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Remark")] public string Remark { get; set; } = null!; } }