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;
|
}
|