You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
579 B

package gys
import "github.com/gin-gonic/gin"
type ListReq struct {
Settled uint `json:"settled"`
Name string `json:"name"`
ContractNo string `json:"contractNo"`
Code string `json:"code"`
Operator string `json:"operator"`
ApplyStartTime string `json:"applyStartTime"`
ApplyEndTime string `json:"applyEndTime"`
ReviewStartTime string `json:"reviewStartTime"`
ReviewEndTime string `json:"reviewEndTime"`
ContractStartTime string `json:"contractTime"`
}
func (e *Enterprise) List(c *gin.Context) {
}