gongchunyi
2 天以前 882045fad703a40e5f5aa7659d0b86fc5a145837
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.ruoyi.sales.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * 销售台账编辑限制标记
 *
 * @author ruoyi
 */
@Data
public class SalesLedgerEditFlagDto {
 
    @Schema(description = "销售台账id")
    private Long salesLedgerId;
 
    @Schema(description = "订单下是否存在需要生产的产品 1-是 0-否")
    private Integer needsProduction;
 
    @Schema(description = "订单下是否存在已下发(含部分下发)的生产计划 1-是 0-否")
    private Integer planIssued;
 
    @Schema(description = "订单下是否已有发货记录 1-是 0-否")
    private Integer shipped;
}