package com.fzzy.push.sh2023.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import com.fzzy.api.entity.ApiParent;
|
import lombok.Data;
|
import java.io.Serializable;
|
|
/**
|
* 粮情设备配置-筒仓电缆圈排列详情
|
*
|
* @author czt
|
*
|
* @date 2023-08-21
|
*/
|
@Data
|
public class SH2023Api2103Item extends ApiParent implements Serializable {
|
|
private static final long serialVersionUID = 9157617424050247565L;
|
|
@PropertyDef(label = "圈号")
|
private String qh;
|
|
@PropertyDef(label = "起始电缆编号")
|
private String qsdlbh;
|
|
@PropertyDef(label = "结束电缆编号")
|
private String jsdlbh;
|
|
@PropertyDef(label = "各圈总层数")
|
private String cs;
|
|
@PropertyDef(label = "圈半径")
|
private String ybj;
|
|
@PropertyDef(label = "序号")
|
private String rowId;
|
|
}
|