using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WCS.Mobox3.DoubleCoin.models { /// /// 每日产量合计 /// [SugarTable("TN_DayProDetail")] public class TN_DayProDetail : BaseModel { /// /// 当天零点 /// public DateTime DAYTIME { get; set; } /// /// 总重量 /// public float WEIGHT { get; set; } } }