You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
626 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AUCMA.STORE.Entity.DAO
{
[SugarTable("IMOS_TE_BOM")]
public class ImosTeBom
{
[SugarColumn(ColumnName = "MASTER_MATERIAL_CODE")]
public string masterMaterialCode { get; set; }
[SugarColumn(ColumnName = "DETIAL_TYPE_CODE_D", IsPrimaryKey = true)]
public string detialTypeCodeD { get; set; }
[SugarColumn(ColumnName = "DETIAL_MATERIAL_CODE", IsPrimaryKey = true)]
public string detialMaterialCode { get; set; }
}
}