Files
api-tes/pkg/models/master_data/master_data.go
2025-03-19 13:47:29 +07:00

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"`
}