| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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; |
| | | } |