Service 개발
// 테이블 변경 시 프로시저 실행 필요
EXEC SP_GEN_TABLECOLUMN_INT
EXEC SP_GEN_TABLECOLUMN_EXT
EXEC SP_GEN_TABLECOLUMN_CUS :P_TABLENAME public class Cell : EntityTemplate
{
public override string TableName => "MES_CELL";
public override string GroupName => "MES_CELL";
public override string TableType => "MAIN";
public string Cellid { get; set; }
public string Cellname { get; set; }
public string Siteid { get; set; } //SITEID 까찌가 테이블의 PK
public string Rackid { get; set; }
public int Floor { get; set; }
public int Section { get; set; }
public int Capacity { get; set; }
} Service 호출 순서
ErrorCode 와 다국어관리

Last updated