package com.billion.main.bs.domain;
|
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.billion.common.annotation.Excel;
|
import com.billion.main.common.BaseEntity;
|
|
/**
|
* 工艺路线子信息对象 bs_route_child_info
|
*
|
* @author Billion-Yi
|
* @date 2024-11-23
|
*/
|
@Data
|
public class BsRouteChildInfo extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键id */
|
private Long id;
|
|
/** 产品编码 */
|
@Excel(name = "产品编码")
|
private String productCode;
|
|
/** 产品名称 */
|
@Excel(name = "产品名称")
|
private String productName;
|
|
/** 工位编码 */
|
@Excel(name = "工位编码")
|
private String locationCode;
|
|
/** 工位名称 */
|
@Excel(name = "工位名称")
|
private String locationName;
|
|
/** 加工顺序 */
|
@Excel(name = "加工顺序")
|
private Long stepNo;
|
|
/** 逻辑删除 */
|
private String delFlag;
|
|
/** 流程编码 */
|
@Excel(name = "流程编码")
|
private String routeCode;
|
|
|
}
|