|
@@ -29,7 +29,7 @@ public class BizArchiveInput extends BaseEntity {
|
|
|
/**
|
|
|
* 档案编码
|
|
|
*/
|
|
|
- @Excel(name = "档案编码")
|
|
|
+// @Excel(name = "档案编码")
|
|
|
@ApiModelProperty(value = "档案编码")
|
|
|
private String archiveCode;
|
|
|
|
|
@@ -43,12 +43,12 @@ public class BizArchiveInput extends BaseEntity {
|
|
|
private Long fromId;
|
|
|
|
|
|
@TableField(exist = false)
|
|
|
- @Excel(name = "客户名称", sort = 1)
|
|
|
+ @Excel(name = "客户名称",width = 30, sort = 1)
|
|
|
private String companyName;
|
|
|
|
|
|
@TableField(exist = false)
|
|
|
@ApiModelProperty("税号")
|
|
|
- @Excel(name = "税号", sort = 2)
|
|
|
+ @Excel(name = "税号",width = 25, sort = 2)
|
|
|
private String socialCreditCode;
|
|
|
|
|
|
@ApiModelProperty("签单人")
|
|
@@ -69,7 +69,7 @@ public class BizArchiveInput extends BaseEntity {
|
|
|
* 开始月
|
|
|
*/
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "开始月", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+// @Excel(name = "开始月", width = 20, dateFormat = "yyyy-MM-dd")
|
|
|
@ApiModelProperty(value = "开始月")
|
|
|
private Date startMonth;
|
|
|
|
|
@@ -77,7 +77,7 @@ public class BizArchiveInput extends BaseEntity {
|
|
|
* 结束月
|
|
|
*/
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "结束月", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+// @Excel(name = "结束月", width = 20, dateFormat = "yyyy-MM-dd")
|
|
|
@ApiModelProperty(value = "结束月")
|
|
|
private Date endMonth;
|
|
|
|
|
@@ -96,7 +96,7 @@ public class BizArchiveInput extends BaseEntity {
|
|
|
/**
|
|
|
* 凭证图片路径
|
|
|
*/
|
|
|
- @Excel(name = "凭证图片路径")
|
|
|
+// @Excel(name = "凭证图片路径")
|
|
|
@ApiModelProperty(value = "凭证图片路径")
|
|
|
private String proofUrl;
|
|
|
|
|
@@ -167,7 +167,7 @@ public class BizArchiveInput extends BaseEntity {
|
|
|
* 出库时间
|
|
|
*/
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "出库时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+// @Excel(name = "出库时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
@ApiModelProperty(value = "出库时间")
|
|
|
private Date outputDate;
|
|
|
|
|
@@ -180,7 +180,7 @@ public class BizArchiveInput extends BaseEntity {
|
|
|
/**
|
|
|
* 月数
|
|
|
*/
|
|
|
- @Excel(name = "月数")
|
|
|
+// @Excel(name = "月数")
|
|
|
@ApiModelProperty(value = "月数")
|
|
|
private Long monthNum;
|
|
|
|