17 lines
367 B
Go
17 lines
367 B
Go
package master_data
|
|
|
|
type ReqInsertData struct {
|
|
ID string `bson:"_id"`
|
|
Table string `bson:"table"`
|
|
System string `bson:"system"`
|
|
Code string `bson:"code"`
|
|
Display string `bson:"display"`
|
|
}
|
|
|
|
type ReqInsertDataMaster struct {
|
|
ID string `bson:"_id"`
|
|
System string `bson:"system"`
|
|
Code string `bson:"code"`
|
|
Display string `bson:"display"`
|
|
}
|