entity 수정
This commit is contained in:
@@ -35,7 +35,7 @@ export class CowModel extends BaseModel {
|
||||
type: 'varchar',
|
||||
length: 1,
|
||||
nullable: true,
|
||||
comment: '성별 (M/F)',
|
||||
comment: '성별 (암/수)',
|
||||
})
|
||||
cowSex: string;
|
||||
|
||||
|
||||
@@ -20,12 +20,21 @@ export class MptModel extends BaseModel {
|
||||
})
|
||||
pkMptNo: number;
|
||||
|
||||
@Column({
|
||||
name: 'cow_id',
|
||||
type: 'varchar',
|
||||
length: 15,
|
||||
nullable: true,
|
||||
comment: '개체식별번호 (KOR...)',
|
||||
})
|
||||
cowId: string;
|
||||
|
||||
@Column({
|
||||
name: 'cow_short_no',
|
||||
type: 'varchar',
|
||||
length: 4,
|
||||
nullable: true,
|
||||
comment: '개체 요약번호',
|
||||
comment: '개체 요약번호 (뒤 4자리)',
|
||||
})
|
||||
cowShortNo: string;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user