flow_no.go 325 B

12345678910
  1. package models
  2. type FlowNo struct {
  3. Type *string `json:"type" db:"type"`
  4. Prefix *string `json:"prefix" db:"prefix"`
  5. CurrDate *string `json:"currDate" db:"curr_date"`
  6. CurrNo *string `json:"currNo" db:"curr_no"`
  7. CurrSeq *int32 `json:"currSeq" db:"curr_seq"`
  8. TenantId *string `json:"tenantId" db:"tenant_id"`
  9. }