| | |
| | | import com.alibaba.fastjson.annotation.JSONField; |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import lombok.Data; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Id; |
| | |
| | | * @Author: YYC |
| | | * @Description:账面库存 |
| | | * @DateTime: 2023/10/20 14:07 |
| | | * |
| | | * 按仓库进行统计,每个月低统计一次(因上海市账面库存接口为按货位统计) |
| | | **/ |
| | | @Data |
| | | @Entity |
| | |
| | | @PropertyDef(label = "组织编码") |
| | | private String companyId; |
| | | |
| | | @Column(name = "kqdm", length = 21) |
| | | @Column(name = "DEPT_ID_", length = 20) |
| | | @PropertyDef(label = "库区代码") |
| | | private String kqdm; |
| | | private String deptId; |
| | | |
| | | @Column(name = "DEPOT_ID_", length = 30) |
| | | @PropertyDef(label = "仓库编码") |
| | | private String depotId; |
| | | |
| | | @Column(name = "lspzdm", length = 7) |
| | | @PropertyDef(label = "粮食品种代码") |
| | |
| | | @JSONField(format = "yyyy-MM-dd") |
| | | @PropertyDef(label = "业务日期") |
| | | private Date ywrq; |
| | | |
| | | @Column(name = "czbz", length = 1) |
| | | @PropertyDef(label = "操作标志") |
| | | private String czbz; |
| | | |
| | | @Column(name = "zhgxsj") |
| | | @JSONField(format = "yyyy-MM-dd HH:mm:ss") |