cm_bid_account.go 343 B

12345678
  1. package models
  2. type CmBidAccount struct {
  3. Id int `xorm:"not null pk autoincr comment('自增ID') INT(11)"`
  4. BidsectionId int `xorm:"not null default 0 comment('标段ID') INT(11)"`
  5. ProjectId int `xorm:"not null default 0 comment('标段ID') INT(11)"`
  6. AccountId int `xorm:"not null default 0 comment('账号ID') INT(11)"`
  7. }