| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- package com.malk.huagao.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.time.LocalDateTime;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author LQY
- * @since 2025-10-16
- */
- @Getter
- @Setter
- @TableName("KD_YD_MATERIAL")
- public class KdYdMaterial implements Serializable {
- private static final long serialVersionUID = 1L;
- private String wlmc;
- private String wlbm;
- private String xh;
- private String gg;
- private String wlfz;
- private String wlsx;
- private String jbdw;
- private String ssxl;
- private String jx;
- private Integer sd;
- private String mrsl;
- private String chlb;
- private String xsy;
- private BigDecimal xsjzj;
- private String smzs;
- private String sjzt;
- private String jyzt;
- private LocalDateTime createTime;
- private LocalDateTime updateTime;
- private String forminstid;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- }
|