12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.onemap.api.domain;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.util.Date;
- @TableName("t_cghj_qxcgsbrwfp")
- public class Qxcgsbrwfp {
- public String bsm;
- public String md5;
- public Integer chunk;
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- public Date scsj;
- public String path;
- public String getBsm() {
- return bsm;
- }
- public void setBsm(String bsm) {
- this.bsm = bsm;
- }
- public String getMd5() {
- return md5;
- }
- public void setMd5(String md5) {
- this.md5 = md5;
- }
- public Integer getChunk() {
- return chunk;
- }
- public void setChunk(Integer chunk) {
- this.chunk = chunk;
- }
- public Date getScsj() {
- return scsj;
- }
- public void setScsj(Date scsj) {
- this.scsj = scsj;
- }
- public String getPath() {
- return path;
- }
- public void setPath(String path) {
- this.path = path;
- }
- }
|