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