| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.example.erp.entity.sd.Order; |
| | | import com.example.erp.entity.sd.OrderDetail; |
| | | import com.example.erp.entity.sd.OrderGlassDetail; |
| | |
| | | |
| | | import java.time.LocalDate; |
| | | @Data |
| | | @TableName("pp.`flow_card`") |
| | | public class FlowCard { |
| | | @TableId(type = IdType.AUTO) |
| | | //自增id |
| | |
| | | private Integer importNumber; |
| | | //订单转移导出数量 |
| | | private Integer exportNumber; |
| | | |
| | | //终止数量 |
| | | private Integer terminationQuantity; |
| | | //连线状态(0不连线1连线,默认1,添加时间 |
| | | private Integer onlineStatus; |
| | | //建立时间 |
| | |
| | | //版图ID |
| | | @TableField(select = false,exist = false) |
| | | private String stockId; |
| | | //小片序号 |
| | | @TableField(select = false,exist = false) |
| | | private Integer polysId; |
| | | //小片数量 |
| | | @TableField(select = false,exist = false) |
| | | private String glassCount; |