OvertimeDto.java 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. package cn.com.lzt.overtimestats.dto;
  2. import java.math.BigDecimal;
  3. import java.util.List;
  4. import javax.persistence.Column;
  5. import javax.persistence.GeneratedValue;
  6. import javax.persistence.Id;
  7. import org.hibernate.annotations.GenericGenerator;
  8. import org.jeecgframework.poi.excel.annotation.Excel;
  9. /**
  10. * @Title: Entity
  11. * @Description: 测试
  12. * @author onlineGenerator
  13. * @date 2017-10-24 16:38:50
  14. * @version V1.0
  15. *
  16. */
  17. public class OvertimeDto implements java.io.Serializable {
  18. /**
  19. *
  20. */
  21. private static final long serialVersionUID = 1L;
  22. /**主键*/
  23. private java.lang.String id;
  24. /**流程状态*/
  25. @Excel(name="日期范围",width=15,format = "yyyy-MM-dd")
  26. private java.lang.String date;
  27. /**创建人名称*/
  28. @Excel(name="单位名称",width=15)
  29. private java.lang.String pName; //项目名称
  30. /**创建人登录名称*/
  31. @Excel(name="项目经理",width=15)
  32. private java.lang.String pidName;
  33. //部门名称
  34. private String departName;
  35. private BigDecimal overtimeDuration;//加班工时
  36. private BigDecimal overtimeFee;//加班费用
  37. private Integer unitPeopleTotal;//单位总人数(人)
  38. private String datumWorkDuration;//基准工作时长
  39. private String overtimeDurationStr;
  40. private String yearMonth;
  41. private String deptId;//部门id
  42. private String userName;//用户姓名
  43. private String userid;
  44. //查询条件
  45. private Integer attType; //查询频度 0:月频 1: 季频 2 : 年频
  46. private String attYear; // 查询年
  47. private String attMonth; //查询月
  48. private Integer attQuarters; //查询季度
  49. private String pid ;//查询项目id
  50. private String did;//部门id
  51. private List<String> yearMonthList;
  52. private BigDecimal mealFee;
  53. /**
  54. *方法: 取得java.lang.String
  55. *@return: java.lang.String 主键
  56. */
  57. @Id
  58. @GeneratedValue(generator = "paymentableGenerator")
  59. @GenericGenerator(name = "paymentableGenerator", strategy = "uuid")
  60. @Column(name ="ID",nullable=false,length=36)
  61. public java.lang.String getId(){
  62. return this.id;
  63. }
  64. /**
  65. *方法: 设置java.lang.String
  66. *@param: java.lang.String 主键
  67. */
  68. public void setId(java.lang.String id){
  69. this.id = id;
  70. }
  71. public java.lang.String getDate() {
  72. return date;
  73. }
  74. public void setDate(java.lang.String date) {
  75. this.date = date;
  76. }
  77. public java.lang.String getpName() {
  78. return pName;
  79. }
  80. public void setpName(java.lang.String pName) {
  81. this.pName = pName;
  82. }
  83. public java.lang.String getPidName() {
  84. return pidName;
  85. }
  86. public void setPidName(java.lang.String pidName) {
  87. this.pidName = pidName;
  88. }
  89. public String getDepartName() {
  90. return departName;
  91. }
  92. public void setDepartName(String departName) {
  93. this.departName = departName;
  94. }
  95. public BigDecimal getOvertimeDuration() {
  96. return overtimeDuration;
  97. }
  98. public void setOvertimeDuration(BigDecimal overtimeDuration) {
  99. this.overtimeDuration = overtimeDuration;
  100. }
  101. public BigDecimal getOvertimeFee() {
  102. return overtimeFee;
  103. }
  104. public void setOvertimeFee(BigDecimal overtimeFee) {
  105. this.overtimeFee = overtimeFee;
  106. }
  107. public Integer getUnitPeopleTotal() {
  108. return unitPeopleTotal;
  109. }
  110. public void setUnitPeopleTotal(Integer unitPeopleTotal) {
  111. this.unitPeopleTotal = unitPeopleTotal;
  112. }
  113. public String getDeptId() {
  114. return deptId;
  115. }
  116. public void setDeptId(String deptId) {
  117. this.deptId = deptId;
  118. }
  119. public String getUserName() {
  120. return userName;
  121. }
  122. public void setUserName(String userName) {
  123. this.userName = userName;
  124. }
  125. public String getYearMonth() {
  126. return yearMonth;
  127. }
  128. public void setYearMonth(String yearMonth) {
  129. this.yearMonth = yearMonth;
  130. }
  131. public Integer getAttType() {
  132. return attType;
  133. }
  134. public void setAttType(Integer attType) {
  135. this.attType = attType;
  136. }
  137. public String getAttYear() {
  138. return attYear;
  139. }
  140. public void setAttYear(String attYear) {
  141. this.attYear = attYear;
  142. }
  143. public String getAttMonth() {
  144. return attMonth;
  145. }
  146. public void setAttMonth(String attMonth) {
  147. this.attMonth = attMonth;
  148. }
  149. public Integer getAttQuarters() {
  150. return attQuarters;
  151. }
  152. public void setAttQuarters(Integer attQuarters) {
  153. this.attQuarters = attQuarters;
  154. }
  155. public String getPid() {
  156. return pid;
  157. }
  158. public void setPid(String pid) {
  159. this.pid = pid;
  160. }
  161. public String getDid() {
  162. return did;
  163. }
  164. public void setDid(String did) {
  165. this.did = did;
  166. }
  167. public List<String> getYearMonthList() {
  168. return yearMonthList;
  169. }
  170. public void setYearMonthList(List<String> yearMonthList) {
  171. this.yearMonthList = yearMonthList;
  172. }
  173. public String getDatumWorkDuration() {
  174. return datumWorkDuration;
  175. }
  176. public void setDatumWorkDuration(String datumWorkDuration) {
  177. this.datumWorkDuration = datumWorkDuration;
  178. }
  179. public String getOvertimeDurationStr() {
  180. return overtimeDurationStr;
  181. }
  182. public void setOvertimeDurationStr(String overtimeDurationStr) {
  183. this.overtimeDurationStr = overtimeDurationStr;
  184. }
  185. /**
  186. * @return the userid
  187. */
  188. public String getUserid() {
  189. return userid;
  190. }
  191. /**
  192. * @param userid the userid to set
  193. */
  194. public void setUserid(String userid) {
  195. this.userid = userid;
  196. }
  197. /**
  198. * @return the mealFee
  199. */
  200. public BigDecimal getMealFee() {
  201. return mealFee;
  202. }
  203. /**
  204. * @param mealFee the mealFee to set
  205. */
  206. public void setMealFee(BigDecimal mealFee) {
  207. this.mealFee = mealFee;
  208. }
  209. }