This commit is contained in:
huangdeliang
2021-01-28 15:14:38 +08:00
parent 4b2de6accd
commit dad428d90c
12 changed files with 2557 additions and 1522 deletions

View File

@ -25,6 +25,8 @@ public class SysOrder extends BaseEntity {
@Excel(name = "编号")
private Long orderId;
private Long cusId;
/**
* 客户姓名
*/
@ -224,6 +226,14 @@ public class SysOrder extends BaseEntity {
* */
private List<SysOrderPause> orderPauseList;
public Long getCusId() {
return cusId;
}
public void setCusId(Long cusId) {
this.cusId = cusId;
}
@JsonFormat(pattern = "yyyy-MM-dd")
public Date getStartTime() {
return startTime;