liyong
4 天以前 1ca5584d7e3200a9af65a099bd26d3593e2ba702
src/main/java/com/ruoyi/production/pojo/ProductionAccount.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,76 @@
package com.ruoyi.production.pojo;
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
/**
 * <p>
 * ç”Ÿäº§æ ¸ç®—表
 * </p>
 *
 * @author èŠ¯å¯¼è½¯ä»¶ï¼ˆæ±Ÿè‹ï¼‰æœ‰é™å…¬å¸
 * @since 2026-04-21 03:55:52
 */
@Data
@TableName("production_account")
@Schema(name = "ProductionAccount对象", description = "生产核算表")
public class ProductionAccount implements Serializable {
    private static final long serialVersionUID = 1L;
    @Schema(description = "主键")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    @Schema(description = "销售台账id")
    private Long salesLedgerId;
    @Schema(description = "销售产品规格id")
    private Long salesLedgerProductId;
    @Schema(description = "报工表id")
    private Long productionProductMainId;
    @Schema(description = "生产人id")
    private Long schedulingUserId;
    @Schema(description = "生产人名称")
    private String schedulingUserName;
    @Schema(description = "生产数量")
    private BigDecimal finishedNum;
    @Schema(description = "工时定额")
    private BigDecimal workHours;
    @Schema(description = "工序名称")
    private String technologyOperationName;
    @Schema(description = "生产日期")
    private LocalDateTime schedulingDate;
    @Schema(description = "创建者")
    @TableField(fill = FieldFill.INSERT)
    private Long createUser;
    @Schema(description = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
    @Schema(description = "修改者")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Long updateUser;
    @Schema(description = "修改时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
    @Schema(description = "部门ID")
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}