1234567891011121314151617 |
- package entity
- var (
- Action_order_spec *action_order_spec
- )
- type action_order_spec struct {
- }
- func (a *action_order_spec) TableName() string {
- return "action_order_spec"
- }
- //
- func (a *action_order_spec) SaveFields() []string {
- return []string{"user_id", "order_id", "product_code", "unit_price", "unit_discount", "product_num", "total_money", "order_money", "createtime", "start_time", "end_time", "product_detail", "buyerclass_num", "area_num", "city_num"}
- }
|