代码提交
This commit is contained in:
parent
c215082fc2
commit
22a6f9017b
|
|
@ -31,28 +31,35 @@ public class MaSupplier extends BaseEntity {
|
|||
@ApiModelProperty("厂家名称")
|
||||
private String supplierName;
|
||||
|
||||
@Excel(name = "联系人", width = 25, sort = 3 )
|
||||
@ApiModelProperty("联系人")
|
||||
private String contactPerson;
|
||||
|
||||
@Excel(name = "联系电话", width = 25, sort = 4 )
|
||||
@ApiModelProperty("联系电话")
|
||||
private String contactPhone;
|
||||
|
||||
@Excel(name = "厂家地址", width = 25, sort = 3 )
|
||||
@Excel(name = "厂家地址", width = 25, sort = 5 )
|
||||
@ApiModelProperty("厂家地址")
|
||||
private String address;
|
||||
|
||||
@Excel(name = "资质信息或营业执照编号", width = 25, sort = 6 )
|
||||
@ApiModelProperty("资质信息或营业执照编号")
|
||||
private String qualification;
|
||||
|
||||
@Excel(name = "状态", width = 25, sort = 7 )
|
||||
@ApiModelProperty("状态(1启用,0停用)")
|
||||
private Integer status;
|
||||
|
||||
@Excel(name = "备注", width = 25, sort = 8 )
|
||||
@ApiModelProperty("备注")
|
||||
private String remark;
|
||||
|
||||
@Excel(name = "创建时间", width = 25, sort = 9 )
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date createTime;
|
||||
|
||||
@Excel(name = "更新时间", width = 25, sort = 10 )
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date updateTime;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue