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_TN_YearProDetail")]
public class TN_YearProDetail : BaseModel
{
///
/// 每年1月1号零点
///
public DateTime DAYTIME { get; set; }
///
/// 规格
///
public string SPEC { get; set; }
///
/// 重量
///
public float WEIGHT { get; set; }
}
}