package com.moral.api.pojo.query.ycgeneratereport;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 盐城报告表
|
* </p>
|
* deyt template generate
|
* @author JI
|
* @since 2024-03-26
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value="YcGenerateReport - 列表查询对象", description="YcGenerateReport - 列表查询对象")
|
public class YcGenerateReportListCond implements Serializable {
|
|
@ApiModelProperty(value = "ID")
|
private Integer id;
|
|
}
|