11 changed files with 185 additions and 33 deletions
@ -0,0 +1,44 @@ |
|||||
|
package com.qs.serve.modules.bms.entity.so; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import lombok.Data; |
||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.time.LocalDateTime; |
||||
|
|
||||
|
/** |
||||
|
* 后继成本中心 查询参数 |
||||
|
* @author YenHex |
||||
|
* @since 2023-05-30 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class BmsBizRegionTreeSo implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
// * @param listUserFlag 加载我负责的用户所属的区域
|
||||
|
// * @param loadByCurrent 值=1,过滤当前用户负责数据(优先级最高)
|
||||
|
// * @param supplierId
|
||||
|
// * @param stopFlag (0,1)是否停用,2->加载所有
|
||||
|
|
||||
|
private Integer listUserFlag; |
||||
|
|
||||
|
private Integer loadByCurrent; |
||||
|
|
||||
|
private String supplierId; |
||||
|
|
||||
|
private Integer onlySupplierFlag; |
||||
|
|
||||
|
private Integer type; |
||||
|
|
||||
|
private String targetId; |
||||
|
|
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
private LocalDateTime yearMonthStart; |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
private LocalDateTime yearMonthEnd; |
||||
|
} |
||||
|
|
@ -0,0 +1,33 @@ |
|||||
|
package com.qs.serve.modules.bms.entity.so; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import lombok.Data; |
||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.time.LocalDateTime; |
||||
|
|
||||
|
/** |
||||
|
* 后继成本中心 查询参数 |
||||
|
* @author YenHex |
||||
|
* @since 2023-05-30 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class BmsCostCenterTreeSo implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
private Integer loadByCurrent; |
||||
|
|
||||
|
private Integer type; |
||||
|
|
||||
|
private String targetId; |
||||
|
|
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
private LocalDateTime yearMonthStart; |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
private LocalDateTime yearMonthEnd; |
||||
|
} |
||||
|
|
@ -0,0 +1,44 @@ |
|||||
|
package com.qs.serve.modules.bms.entity.so; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import lombok.Data; |
||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.time.LocalDateTime; |
||||
|
|
||||
|
/** |
||||
|
* 后继成本中心 查询参数 |
||||
|
* @author YenHex |
||||
|
* @since 2023-05-30 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class BmsSaleRegionTreeSo implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
// * @param listUserFlag 加载我负责的用户所属的区域
|
||||
|
// * @param loadByCurrent 值=1,过滤当前用户负责数据(优先级最高)
|
||||
|
// * @param supplierId
|
||||
|
// * @param stopFlag (0,1)是否停用,2->加载所有
|
||||
|
|
||||
|
private Integer listUserFlag; |
||||
|
|
||||
|
private Integer loadByCurrent; |
||||
|
|
||||
|
private String supplierId; |
||||
|
|
||||
|
private Integer stopFlag; |
||||
|
|
||||
|
private Integer type; |
||||
|
|
||||
|
private String targetId; |
||||
|
|
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
private LocalDateTime yearMonthStart; |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
private LocalDateTime yearMonthEnd; |
||||
|
} |
||||
|
|
Loading…
Reference in new issue