wip
This commit is contained in:
parent
ca9dbcd1f2
commit
a329ca000f
@ -9,8 +9,8 @@ import (
|
||||
type CustomerOrder struct {
|
||||
Inst string `json:"INST"`
|
||||
DateTime string `json:"DATE_TIME"`
|
||||
COrderNo int `json:"C_ORDER_NO" gorm:"primaryKey"`
|
||||
POrderNo int `json:"P_ORDER_NO"`
|
||||
COrderNo int `json:"C_ORDER_NO" gorm:"primaryKey;autoIncrement:false"`
|
||||
POrderNo int `json:"P_ORDER_NO" gorm:"index"`
|
||||
SchedulNo int `json:"SCHEDUL_NO"`
|
||||
OrdWeight string `json:"ORD_WEIGHT"`
|
||||
OrdLen string `json:"ORD_LEN"`
|
||||
|
@ -9,7 +9,7 @@ import (
|
||||
type ProductionOrder struct {
|
||||
Inst string `json:"INST"`
|
||||
DateTime string `json:"DATE_TIME"`
|
||||
POrderNo int `json:"P_ORDER_NO" gorm:"primaryKey"`
|
||||
POrderNo int `json:"P_ORDER_NO" gorm:"primaryKey;autoIncrement:false"`
|
||||
SchedulNo int `json:"SCHEDUL_NO"`
|
||||
SeqNumber int `json:"SEQ_NUMBER"`
|
||||
PptimeWfc string `json:"PPTIME_WFC"`
|
||||
|
Loading…
Reference in New Issue
Block a user