planVo.go 242 B

1234567891011
  1. package vo
  2. import "lims-extend/model"
  3. type PlanVo struct {
  4. model.Plan
  5. IsJoined bool `json:"is_joined"`
  6. SendAmount int `json:"send_amount"`
  7. ReceiveAmount int `json:"receive_amount"`
  8. ReportAmount int `json:"report_amount"`
  9. }