| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * TacWordBaseParam
- *
- * @author lune
- * @date 2019-10-9
- */
- public class TacWordBaseParam extends PageParam implements Serializable {
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("文档类型(1:基本信息;2:专家底稿;3:项目稽察报告;4:稽察组稽察报告)")
- private String type;
- @ApiModelProperty("业务主键ID")
- private String bizId;
- @ApiModelProperty("文档路径")
- private String filePath;
- @ApiModelProperty("备注")
- private String note;
- @ApiModelProperty("创建人")
- private String persId;
- @ApiModelProperty("创建时间")
- private Date intm;
- @ApiModelProperty("修改时间")
- private Date uptm;
- @ApiModelProperty("数据状态(0:正常;9:删除)")
- private String dataStat;
- public TacWordBaseParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getBizId() {
- return bizId;
- }
- public void setBizId(String bizId) {
- this.bizId = bizId;
- }
- public String getFilePath() {
- return filePath;
- }
- public void setFilePath(String filePath) {
- this.filePath = filePath;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- }
|