| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | |
| | | /** |
| | | * 缴费id |
| | |
| | | /** |
| | | * 是否缴款0否1是 |
| | | */ |
| | | @ApiModelProperty("是否缴款") |
| | | @ApiModelProperty("是否缴款0否1是") |
| | | private Long payStatus; |
| | | |
| | | @ApiModelProperty("缴费类型1个人 2团体") |
| | | private Long payType; |
| | | |
| | | |
| | | @ApiModelProperty("订单编号") |
| | | private String orderNo; |
| | | |
| | | @ApiModelProperty("财政订单编号") |
| | | private String orderId; |
| | | |
| | | @ApiModelProperty("财政缴款凭证") |
| | | private String fileData; |
| | | |
| | | @ApiModelProperty("缴费时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date payTime; |
| | | |
| | | /** |
| | | * 财政订单状态0未生成1生成中2未生成 |
| | | */ |
| | | @ApiModelProperty("财政订单状态0未生成1生成中2已生成") |
| | | private Integer govPayStatus; |
| | | |
| | | @ApiModelProperty("培训机构") |
| | | private String train; |
| | | /** |
| | | * 删除标志(0代表存在2代表删除) |
| | | */ |
| | |
| | | public void setPayType(Long payType) { |
| | | this.payType = payType; |
| | | } |
| | | |
| | | public String getOrderNo() { |
| | | return orderNo; |
| | | } |
| | | |
| | | public void setOrderNo(String orderNo) { |
| | | this.orderNo = orderNo; |
| | | } |
| | | |
| | | public String getOrderId() { |
| | | return orderId; |
| | | } |
| | | |
| | | public void setOrderId(String orderId) { |
| | | this.orderId = orderId; |
| | | } |
| | | |
| | | public String getFileData() { |
| | | return fileData; |
| | | } |
| | | |
| | | public void setFileData(String fileData) { |
| | | this.fileData = fileData; |
| | | } |
| | | |
| | | public Date getPayTime() { |
| | | return payTime; |
| | | } |
| | | |
| | | public void setPayTime(Date payTime) { |
| | | this.payTime = payTime; |
| | | } |
| | | |
| | | public Integer getGovPayStatus() { |
| | | return govPayStatus; |
| | | } |
| | | |
| | | public void setGovPayStatus(Integer govPayStatus) { |
| | | this.govPayStatus = govPayStatus; |
| | | } |
| | | |
| | | public String getTrain() { |
| | | return train; |
| | | } |
| | | |
| | | public void setTrain(String train) { |
| | | this.train = train; |
| | | } |
| | | } |