| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiModel;
- import java.io.Serializable;
- /**
- * BisInspMileageParam
- *
- * @author zhengdafei
- * @date 2019-7-2
- */
- public class BisInspMileageParam extends PageParam implements Serializable {
- private static final long serialVersionUID = 1L;
- //主键ID(主键)
- @ApiModelProperty(value = "主键ID(长度:64,主键,可为空:N)", notes = "主键ID", required = true)
- private String id;
- //人员id
- @ApiModelProperty(value = "人员id(长度:64,可为空:N)", notes = "人员id", required = true)
- private String persId;
- //里程
- @ApiModelProperty(value = "里程(精度:10,可为空:Y)", notes = "里程")
- private Long mileage;
- //日期
- @ApiModelProperty(value = "日期(长度:7,可为空:N)", notes = "日期", required = true)
- private String mileDate;
- //更新时间
- @ApiModelProperty(value = "更新时间(长度:7,可为空:Y,默认值:sysdate)", notes = "更新时间")
- private String uptm;
- public BisInspMileageParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Long getMileage() {
- return mileage;
- }
- public void setMileage(Long mileage) {
- this.mileage = mileage;
- }
- public String getMileDate() {
- return mileDate;
- }
- public void setMileDate(String mileDate) {
- this.mileDate = mileDate;
- }
- public String getUptm() {
- return uptm;
- }
- public void setUptm(String uptm) {
- this.uptm = uptm;
- }
- }
|