|
@@ -70,9 +70,8 @@ public class YhBtLog extends Model<YhBtLog> {
|
|
|
* 所属抄表本
|
|
|
*/
|
|
|
@ColumnWidth(30)
|
|
|
- @ExcelProperty("所属抄表本")
|
|
|
- @ExcelIgnore
|
|
|
- @ApiModelProperty(value = "所属抄表本")
|
|
|
+ @ExcelProperty("所属表册")
|
|
|
+ @ApiModelProperty(value = "所属表册")
|
|
|
private BigDecimal sscbb;
|
|
|
|
|
|
|
|
@@ -82,6 +81,13 @@ public class YhBtLog extends Model<YhBtLog> {
|
|
|
@ExcelProperty("用户编号")
|
|
|
@ApiModelProperty(value = "用户编号")
|
|
|
private String yhbh;
|
|
|
+
|
|
|
+ * 报停人员姓名
|
|
|
+ */
|
|
|
+ @ColumnWidth(30)
|
|
|
+ @ExcelProperty("用户姓名")
|
|
|
+ @ApiModelProperty(value = "用户姓名")
|
|
|
+ private String yhxm;
|
|
|
|
|
|
* 用户地址
|
|
|
*/
|
|
@@ -89,52 +95,44 @@ public class YhBtLog extends Model<YhBtLog> {
|
|
|
@ExcelProperty("用户地址")
|
|
|
@ApiModelProperty(value = "用户地址")
|
|
|
private String yhdz;
|
|
|
-
|
|
|
- * 报停人员姓名
|
|
|
- */
|
|
|
- @ColumnWidth(30)
|
|
|
- @ExcelProperty("报停人员姓名")
|
|
|
- @ApiModelProperty(value = "报停人员姓名")
|
|
|
- private String yhxm;
|
|
|
+
|
|
|
|
|
|
* 报停申请人员
|
|
|
*/
|
|
|
@ColumnWidth(30)
|
|
|
- @ExcelProperty("报停申请人员")
|
|
|
- @ApiModelProperty(value = "报停申请人员")
|
|
|
+ @ExcelProperty("申请人员")
|
|
|
+ @ApiModelProperty(value = "申请人员")
|
|
|
private String btsqr;
|
|
|
|
|
|
* 报停电话
|
|
|
*/
|
|
|
@ColumnWidth(30)
|
|
|
- @ExcelProperty("报停电话")
|
|
|
- @ApiModelProperty(value = "报停电话")
|
|
|
+ @ExcelProperty("申请电话")
|
|
|
+ @ApiModelProperty(value = "申请电话")
|
|
|
private String btdh;
|
|
|
-
|
|
|
- * 报停时间
|
|
|
- */
|
|
|
- @ColumnWidth(30)
|
|
|
- @ExcelProperty("报停时间")
|
|
|
- @ApiModelProperty(value = "报停时间")
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- private Date btsj;
|
|
|
|
|
|
* 备注说明
|
|
|
*/
|
|
|
@ColumnWidth(30)
|
|
|
- @ExcelProperty("备注说明")
|
|
|
- @ApiModelProperty(value = "备注说明")
|
|
|
+ @ExcelProperty("备注")
|
|
|
+ @ApiModelProperty(value = "备注")
|
|
|
private String bz;
|
|
|
|
|
|
* 操作时间
|
|
|
*/
|
|
|
- @ColumnWidth(30)
|
|
|
+ @ColumnWidth(30)
|
|
|
@ExcelProperty("操作时间")
|
|
|
@ApiModelProperty(value = "操作时间")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date czrq;
|
|
|
+
|
|
|
+ * 操作人员姓名
|
|
|
+ */
|
|
|
+ @ColumnWidth(30)
|
|
|
+ @ExcelProperty("操作人员姓名")
|
|
|
+ @ApiModelProperty(value = "操作人员姓名")
|
|
|
+ private String czryxm;
|
|
|
|
|
|
* 操作人员编码
|
|
|
*/
|
|
@@ -144,12 +142,18 @@ public class YhBtLog extends Model<YhBtLog> {
|
|
|
@ApiModelProperty(value = "操作人员编码")
|
|
|
private String czrybm;
|
|
|
|
|
|
- * 操作人员姓名
|
|
|
+ * 报停时间
|
|
|
*/
|
|
|
- @ColumnWidth(30)
|
|
|
- @ExcelProperty("操作人员姓名")
|
|
|
- @ApiModelProperty(value = "操作人员姓名")
|
|
|
- private String czryxm;
|
|
|
+ @ColumnWidth(30)
|
|
|
+ @ExcelProperty("报停时间")
|
|
|
+ @ApiModelProperty(value = "报停时间")
|
|
|
+ @ExcelIgnore
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date btsj;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
* 恢复用水标志(默认为0,1是已恢复)
|
|
|
*/
|
|
@@ -163,6 +167,7 @@ public class YhBtLog extends Model<YhBtLog> {
|
|
|
*/
|
|
|
@ColumnWidth(30)
|
|
|
@ExcelProperty("恢复报停时间")
|
|
|
+ @ExcelIgnore
|
|
|
@ApiModelProperty(value = "恢复报停时间")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|