添加天津涂装看板
							parent
							
								
									5070fcc8fb
								
							
						
					
					
						commit
						12074e24a8
					
				| @ -0,0 +1,54 @@ | ||||
| package cn.estsh.i3plus.pojo.mes.bean; | ||||
| 
 | ||||
| 
 | ||||
| import cn.estsh.i3plus.pojo.base.bean.BaseBean; | ||||
| import io.swagger.annotations.Api; | ||||
| import io.swagger.annotations.ApiParam; | ||||
| import lombok.Data; | ||||
| import lombok.EqualsAndHashCode; | ||||
| import org.hibernate.annotations.ColumnDefault; | ||||
| import org.hibernate.annotations.DynamicInsert; | ||||
| import org.hibernate.annotations.DynamicUpdate; | ||||
| 
 | ||||
| import javax.persistence.Column; | ||||
| import javax.persistence.Entity; | ||||
| import javax.persistence.Table; | ||||
| import java.io.Serializable; | ||||
| 
 | ||||
| /** | ||||
|  * @Description :mes看板车间配置 | ||||
|  * @Reference : | ||||
|  * @Author : adair.song | ||||
|  * @CreateDate : 2020-11-09 | ||||
|  * @Modify: | ||||
|  **/ | ||||
| @Data | ||||
| @Entity | ||||
| @DynamicInsert | ||||
| @DynamicUpdate | ||||
| @EqualsAndHashCode(callSuper = true) | ||||
| @Table(name = "MES_BOARD_AREA") | ||||
| @Api("mes看板车间配置") | ||||
| public class MesBoardArea extends BaseBean implements Serializable { | ||||
| 
 | ||||
|     private static final long serialVersionUID = 4592603687011665216L; | ||||
|     @Column(name = "BOARD_CODE") | ||||
|     @ApiParam("看板代码") | ||||
|     private String boardCode; | ||||
| 
 | ||||
|     @Column(name = "AREA_CODE") | ||||
|     @ApiParam("区域代码") | ||||
|     private String areaCode; | ||||
| 
 | ||||
|     @Column(name = "PLAN_PASS_YIELD", columnDefinition = "decimal(18,3)") | ||||
|     @ColumnDefault("0") | ||||
|     @ApiParam("目标达成率") | ||||
|     private Double planPassYield; | ||||
| 
 | ||||
|     @Column(name = "YIELD_DIFF_VALUE", columnDefinition = "decimal(18,3)") | ||||
|     @ColumnDefault("0") | ||||
|     @ApiParam("上下偏差值") | ||||
|     private Double yieldDiffValue; | ||||
| 
 | ||||
| 
 | ||||
| } | ||||
| @ -0,0 +1,14 @@ | ||||
| package cn.estsh.i3plus.pojo.mes.repository; | ||||
| 
 | ||||
| import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; | ||||
| import cn.estsh.i3plus.pojo.mes.bean.MesBoardArea; | ||||
| 
 | ||||
| /** | ||||
|  * @Description: | ||||
|  * @Reference: | ||||
|  * @Author: joke.wang | ||||
|  * @CreateDate: 2019\11\13 11:53 | ||||
|  * @Modify: | ||||
|  **/ | ||||
| public interface MesBoardAreaRepository extends BaseRepository<MesBoardArea, Long> { | ||||
| } | ||||
					Loading…
					
					
				
		Reference in New Issue