|  |  | 
 |  |  | import java.io.Serializable; | 
 |  |  | import java.text.SimpleDateFormat; | 
 |  |  | import java.util.Date; | 
 |  |  | import java.util.List; | 
 |  |  |  | 
 |  |  | @Data | 
 |  |  | @TableName("asr_wrk_mast") | 
 |  |  | @TableName("\"SOURCE\".\"asr_wrk_mast\"") | 
 |  |  | public class WrkMast implements Serializable { | 
 |  |  |  | 
 |  |  |     private static final long serialVersionUID = 1L; | 
 |  |  | 
 |  |  |     private String fullPlt; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 满板 | 
 |  |  |      * wms任务号 | 
 |  |  |      */ | 
 |  |  |     @ApiModelProperty(value= "wms任务号") | 
 |  |  |     @TableField("wms_wrk_no") | 
 |  |  |     private Integer wmsWrkNo; | 
 |  |  |     private String taskNo; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 结束时间 | 
 |  |  | 
 |  |  |     @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") | 
 |  |  |     private Date endTime; | 
 |  |  |  | 
 |  |  |     //命令list | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private List<CommandInfo> children; | 
 |  |  |  | 
 |  |  |     public String getWrkSts$(){ | 
 |  |  |         BasWrkStatusMapper mapper = SpringUtils.getBean(BasWrkStatusMapper.class); | 
 |  |  |         BasWrkStatus entity = mapper.selectById(this.wrkSts); |