- package models
- import "gorm.io/gorm"
- type Product struct {
- gorm.Model
- ProductType string `json:"product_type" validate:"required"`
- CreateBy int `json:"create_by"` //创建人
- }
- type ProductDto struct {
- ProductType string `json:"product_type" validate:"required"`
- }
|