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.
41 lines
1.0 KiB
41 lines
1.0 KiB
package com.xujie.modules.inspection.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.xujie.common.utils.QueryPage;
|
|
import lombok.Data;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
@TableName("srm_fee_header")
|
|
public class SrmFeeHeaderEntity extends QueryPage {
|
|
|
|
private String site;
|
|
|
|
private String feeNo;
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
private Date feeDate;
|
|
|
|
private BigDecimal totalAmount;
|
|
|
|
private String createdBy;
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
private Date createdDate;
|
|
|
|
private String updateBy;
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
private Date updateDate;
|
|
|
|
private String applyUser;
|
|
|
|
private String remark;
|
|
}
|