11 changed files with 159 additions and 5 deletions
@ -0,0 +1,22 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/12/20 1:50 下午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class AllMattersFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 5292223887794821327L; |
||||
|
|
||||
|
public interface AllMattersForm{} |
||||
|
|
||||
|
@NotBlank(message = "gridId不能为空",groups = AllMattersForm.class) |
||||
|
private String gridId; |
||||
|
} |
@ -0,0 +1,43 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/12/20 1:51 下午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class AllMattersResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -2859875516671396422L; |
||||
|
|
||||
|
/** |
||||
|
* 可预约事项名字 |
||||
|
*/ |
||||
|
private String matterName; |
||||
|
|
||||
|
/** |
||||
|
* 可预约时间 |
||||
|
*/ |
||||
|
private String allowTime; |
||||
|
|
||||
|
/** |
||||
|
* 可预约事项ID |
||||
|
*/ |
||||
|
private String matterId; |
||||
|
|
||||
|
/** |
||||
|
* 事项封面图 |
||||
|
*/ |
||||
|
private String matterImg; |
||||
|
|
||||
|
public AllMattersResultDTO() { |
||||
|
this.matterName = ""; |
||||
|
this.allowTime = ""; |
||||
|
this.matterId = ""; |
||||
|
this.matterImg = ""; |
||||
|
} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
alter table ic_party_service_center_matter add COLUMN MATTER_IMG VARCHAR(256) NOT NULL comment '封面图' AFTER END_TIME; |
Loading…
Reference in new issue