| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | @Data |
| | | public class SupplierVolumeProductionRkglVO { |
| | | @ApiModelProperty("用户名称") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String nickName; |
| | | |
| | | @ApiModelProperty(name = "手机号码") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String phonenumber; |
| | | |
| | | @TableId("id") |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty("仓库名称") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String storeManagementName; |
| | | |
| | | @ApiModelProperty("发起时间") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Date startiTime; |
| | | |
| | | @ApiModelProperty("供应商id") |
| | | private Integer supplierId; |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Long supplierId; |
| | | |
| | | @ApiModelProperty("仓库ID") |
| | | @TableField("management_id") |
| | | private Long managementId; |
| | | |
| | | |