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.Basic
{
///
///
///
[SugarTable("Dt_MaterialUnit")]
public class Dt_MaterialUnit : BaseEntity
{
///
/// 备 注:
/// 默认值:
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int Id { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "itemNo")]
public string ItemNo { get; set; } = null!;
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "productName")]
public string ProductName { get; set; } = null!;
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "fromUom")]
public string FromUom { get; set; } = null!;
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "toUom")]
public string ToUom { get; set; } = null!;
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "ratio")]
public decimal Ratio { get; set; }
}
}